home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Editing / Toggle_Fold.bsh < prev   
Text File  |  2013-07-28  |  383b  |  12 lines

  1. line = textArea.getCaretLine();
  2. if (line < textArea.getLineCount() - 1)
  3. {
  4.         expanded = textArea.displayManager.isLineVisible(line+1);
  5.         if (expanded)
  6.                 textArea.collapseFold();
  7.         else {
  8.                 pos = textArea.getCaretPosition();
  9.                 textArea.expandFold(false);
  10.                 textArea.setCaretPosition(pos);
  11.         }
  12. }